-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
json: support parsing and serializing of char arrays and integers (int8_t, uint8_t, etc.) #87580
Open
cjwinklhofer
wants to merge
3
commits into
zephyrproject-rtos:main
Choose a base branch
from
cjwinklhofer:fix_json_string_array
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
json: support parsing and serializing of char arrays and integers (int8_t, uint8_t, etc.) #87580
cjwinklhofer
wants to merge
3
commits into
zephyrproject-rtos:main
from
cjwinklhofer:fix_json_string_array
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The calculation of the object size may be incorrect when the size of a field is smaller than the struct alignment. When such a struct is used in an array field, the decoded object contains wrong values. The alignment influences the object size. For example the following struct has a calculated object size of 8 bytes, however due to alignment the real size of the struct is 12 bytes: struct test_bool { bool b1; /* offset 0, size 1 */ /* 3-byte padding */ int i1; /* offset 4, size 4 */ bool b2; /* offset 8, size 1 */ /* 3-byte padding */ }; This commit changes the object size calculation and computes the size with the offset and size of the last field in the struct (rounded up by the struct alignment). Fixes: zephyrproject-rtos#85121 Signed-off-by: Christoph Winklhofer <cj.winklhofer@gmail.com>
0cf3258
to
ce7bf51
Compare
1e56312
to
651d140
Compare
Support parsing and serializing of struct fields that are defined as a char array. Use the token JSON_TOK_STRING_BUF to parse and serialize a string for a char array, for example: struct foo { const char *str; char str_buf[30]; }; struct json_obj_descr foo[] = { JSON_OBJ_DESCR_PRIM(struct foo, str, JSON_TOK_STRING), JSON_OBJ_DESCR_PRIM(struct foo, str_buf, JSON_TOK_STRING_BUF), }; The struct 'json_obj_descr' now has an additional union member 'field' to store the size of the struct field, which is used with the token 'JSON_TOK_STRING_BUF' to determine the element size. Fixes: zephyrproject-rtos#65200 Signed-off-by: Christoph Winklhofer <cj.winklhofer@gmail.com>
35b26d3
to
9553f49
Compare
Add support for parsing and serializing of following integer types: 'int8_t', 'uint8_t', 'int16_t', 'uint16_t' and 'uint32_t'. The generic integer token JSON_TOK_INT and JSON_TOK_UINT, in combination with the field size (set by JSON_OBJ_DESCR_PRIM) allows to parse different integer types, for example: struct foo { int64_t i64; uint32_t u32; int16_t i16; uint8_t u8; }; struct json_obj_descr foo[] = { JSON_OBJ_DESCR_PRIM(struct foo, i64, JSON_TOK_INT), JSON_OBJ_DESCR_PRIM(struct foo, u32, JSON_TOK_UINT), JSON_OBJ_DESCR_PRIM(struct foo, i16, JSON_TOK_INT), JSON_OBJ_DESCR_PRIM(struct foo, u8, JSON_TOK_UINT), }; These tokens also support parsing and serializing enums: enum unsigned_enum { UA=0, UB=1, UC=2 }; enum signed_enum { SA=-1, SB=0, SC=1 }; struct foo { enum unsigned_enum u; enum signed_enum s; }; struct json_obj_descr foo[] = { JSON_OBJ_DESCR_PRIM(struct foo, u, JSON_TOK_UINT), JSON_OBJ_DESCR_PRIM(struct foo, s, JSON_TOK_INT), }; Signed-off-by: Christoph Winklhofer <cj.winklhofer@gmail.com>
9553f49
to
0d9a834
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Support parsing and serializing of char arrays and integers
By extending the struct 'json_obj_descr' with an additional union member 'field' that stores the size of the struct field it is possible to serialize and parse char arrays, integers with different width and also enum types. Added three new tokens:
Strings with char arrays
Use the token JSON_TOK_STRING_BUF to parse and serialize a string for a char array, for example:
Integers of different width
Use the token JSON_TOK_INT or JSON_TOK_UINT to parse and serialize integers of different types - for example:
Parsing and serializing enums
Fixes: #65200